17. Quiz

RecyclerViews generate a new View for each entry in their source data collection.

SOLUTION: False

RecyclerViews can display different types of Views for different objects in their source data collection.

SOLUTION: True

A __ binds a single entry in a data collection to a RecyclerView's displayed View.

SOLUTION: `ViewHolder`

A __ maps the data between the data collection and the displayed Views of a RecyclerView.

SOLUTION: `Adapter`

Multiple Views can be associated with a single entity in a data collection within a ViewHolder

SOLUTION: True

DiffUtil

SOLUTION: All of the above

The __ pattern reuses views to efficiently inflate and display only the requisite Views for a RecyclerView

SOLUTION: `ViewHolder`